home *** CD-ROM | disk | FTP | other *** search
- unit Chdir;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, StdCtrls, FileCtrl;
-
- type
- TChDirDlg = class(TForm)
- DirList: TDirectoryListBox;
- DriveList: TDriveComboBox;
- Button1: TButton;
- Button2: TButton;
- Label1: TLabel;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- ChDirDlg: TChDirDlg;
-
- implementation
-
- {$R *.DFM}
-
- end.
-